std::basic_istringstream::operator=
From Cppreference
< cpp | io | basic istringstream
| C++ Standard Library | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Input/output library | ||||||||||||||||||||
| std::basic_istringstream | ||||||||||||||||||||
| ||||||||||||||||||||
| basic_ifstream& operator=( basic_istringstream&& other );
|
(C++11 feature) | |
Moves the string stream. The source stream becomes of invalid state after the operation.
Contents |
[edit] Parameters
| other | - | string stream to move. other becomes of invalid state after the operation. |
[edit] Return value
*this
[edit] Example
| This section is incomplete |
[edit] See also
|
swaps two string streams (public member function) |
||